home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / include / ds3100.md / nlist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-01  |  500 b   |  28 lines

  1. /*
  2.  * nlist.h --
  3.  *
  4.  *    Declarations of the ultrix namelist structure.
  5.  *
  6.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.2 89/01/07 04:12:44 rab Exp $ SPRITE (Berkeley)
  7.  
  8.  */
  9. /*    @(#)nlist.h    4.3    (ULTRIX)    9/1/88                      */
  10.  
  11. #ifndef _NLIST
  12. #define _NLIST
  13.  
  14. /* constants */
  15.  
  16. /* data structures */
  17.  
  18. /* procedures */
  19.  
  20. #define    N_UNDF    0x0        /* undefined */
  21. struct nlist {
  22.     char *n_name;
  23.     unsigned long n_value;
  24.     short n_type;        /* 0 if not there, 1 if found */
  25.     short reserved;
  26. };
  27. #endif /* _NLIST */
  28.